home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d15 / imagebld.arc / IMAGEBLD.DOC next >
Text File  |  1990-08-02  |  7KB  |  191 lines

  1.  
  2.  
  3.                           IMAGE BUILDER
  4.  
  5.                            Version 1.1
  6.  
  7.                (C) Copyright 1989 by Paul Eggers
  8.  
  9.                        ALL RIGHTS RESERVED
  10.  
  11.                            Paul Eggers
  12.                         473 Virginia Ave
  13.                        Herndon, Va  22070
  14.  
  15.  
  16.  
  17. PREFACE:
  18.  
  19.    Image Builder is a Quickbasic graphic utility for creating
  20. Images, fonts, icons or anything else that fits in this category.
  21.  
  22. Output is for use in your Quickbasic programs.
  23.  
  24.  
  25. REQUIREMENTS:
  26.  
  27.    Video - EGA or better.
  28.    Input - Keyboard (Mouse is Optional)
  29.  
  30.    Quickbasic ver 4.0 or greater is not a requirement to run
  31.    this program, but the output generated is used by
  32.    Quickbasic.
  33.  
  34. TERMS:
  35.  
  36.    This software is distributed as Shareware. You are granted a
  37. free license to use this software. You are encouraged to copy and
  38.  
  39. share this software with others. Distribution of this software
  40. must be in its original unmodified form. If you use this
  41. software and find it of value you're encouraged to register this
  42.  
  43. software. The registration fee is $10.00. This will entitle you
  44. to any upgrades of this software and special notice if any new
  45. products become available. You will find a registration form at
  46. the end of this document.
  47.  
  48.    This program may not be sold in any form without the express
  49. written consent of the author.
  50.  
  51.  
  52.  
  53. DESCRIPTION/DOCUMENTATION:
  54.  
  55.    Image builder is a graphic utility for creating different
  56. graphic images I.E icons, fonts, or just shapes for use in your
  57. Quickbasic programs. All images created and saved may be reloaded
  58. and modified. The documentation presented here has been kept
  59. brief and just provides as an overview (Image builder has built
  60. in help to guide you through any problems). I do recommend you
  61. read through this documentation as it does explain some of the
  62. functionality of the program.
  63.  
  64.    When you first start Image builder you will be presented with
  65. a large grid pattern. A smaller box in the upper right hand
  66. corner will display the actual image to be saved. Under that will
  67. be the current color that you have selected. (Default at startup
  68. is black). Below that is the color selection list and a function
  69. key/help option panel. Using the arrow keys and spacebar (mouse
  70. is optional) you can move around the larger grid to turn on/off
  71. selected color combinations. As you do this, the actual image in
  72. the smaller box will be created for you. The options available
  73. are processed through pfkeys and they are as follows (From screen
  74. 1, Main screen).
  75.  
  76.    PF1 - Help               For this screen.
  77.    PF2 - Change Color       Select new color to plot.
  78.    PF3 - Change Background  Changes the background color
  79.                             Note: be careful with this one, if
  80.                             a color in your image is red and
  81.                             you change the background color.
  82.                             to red, you may blend the these
  83.                             colors.
  84.  
  85.    PF4 - Toggle Mouse       This option only available when a
  86.                             mouse has been loaded.
  87.    PF5 - Utilities        New Menu -
  88.          PF1 - Help         For utilities.
  89.          PF2 - Clear        Clear entire screen to current
  90.                             background color.
  91.          PF3 - Display      This will display your image
  92.                             by itself on another page.
  93.          <ESC>              Return to previous menu.
  94.    PF10- Save / Exit      New Menu -
  95.          PF1 - Help         For Save / Exit.
  96.          PF2 - Save         Save your image to disk
  97.                             (see below)
  98.          PF3 - Load         Reload your saved image
  99.                             (see below)
  100.          PF4 - Exit         Exit program.
  101.          <ESC>              Return to previous menu.
  102.  
  103.  
  104.  
  105. Notes on saving and restoring.
  106.  
  107.   Once your image has been created you can save your image to
  108. disk. Selecting the save option will display a yellow box around
  109. the entire grid. You can change the size of this box by using the
  110. arrow keys in combination with the spacebar. Only the image
  111. inside this box will be saved. There are 2 formats for saving
  112. your image. These 2 formats can be together or individually. When
  113. saving your image you will be prompted for a filename. The file
  114. name can be up to 8 characters in length. If you save your image
  115. in source format you will also be prompted for the array name,
  116. also to up 8 characters in length.
  117.  
  118. SAVE FORMATS
  119.  
  120.   1) Quickbasic BSAVE format
  121.      Saving your image in BSAVE format will allow you to retrieve
  122.  
  123.      your image using Quickbasic BLOAD command.
  124.  
  125.   2) Quickbasic Source format
  126.      Saving your image in source format saves your image in the
  127.      form of a hard coded array
  128.      EXAMPLE:
  129.        DIM image% (3)
  130.        image%(1) = 5 : image%(2) = -87 : image%(3) = 0 ...
  131.  
  132. The basic program will have the DIM name and size set up for
  133. you and will be ready to be compiled to display your image. To
  134. use the image in a program you should copy the example in your
  135. program and make any needed modifications.
  136.  
  137. Any image that is saved in BSAVE format may be reloaded into
  138. IMAGE BUILDER for modification. PLEASE NOTE: THE IMAGE HAS TO BE
  139. SAVED IN BSAVE FORMAT TO PERFORM A RELOAD.
  140.  
  141.    Thank you for trying IMAGE BUILDER and remember to support
  142. SHAREWARE! There are many great programs already available and
  143. many more to be written, but only with your support can we keep
  144. software costs down.
  145.  
  146. HISTORY:
  147.  
  148.   Ver 1.0  - Completed Imagebuilder for own use.
  149.  
  150.   Ver 1.1  - Initial version release.
  151.              A few bugs minor bugs resolved.
  152.  
  153.   Ver 1.2  - Cleaned up bug that that erased Verion # from screen.
  154.              Modified input prompts for File spec and Image variable
  155.              1) only 8 characters allowed for both.
  156.              2) allow modification to input, right and left arrow keys,
  157.                 del and insert now work.
  158.  
  159.  
  160.                         REGISTRATION FORM
  161.  
  162. NAME     _____________________________________
  163.  
  164. ADDRESS  _____________________________________
  165.  
  166. CITY/ST  _____________________________________
  167.  
  168. ZIP      _____________________________________
  169.  
  170.  
  171.  
  172. COMMENTS/SUGGESTIONS:
  173.  
  174. ______________________________________________
  175.  
  176. ______________________________________________
  177.  
  178. ______________________________________________
  179.  
  180. ______________________________________________
  181.  
  182.  
  183. Make checks payable to PAUL EGGERS.
  184.  
  185. MAIL TO:
  186.  
  187.    Paul Eggers
  188.    473 Virginia Ave
  189.    Herndon, Va 22070
  190.  
  191.